home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / syslog-ng / syslog-ng.conf
Text File  |  2006-01-09  |  1KB  |  30 lines

  1. # $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/files/syslog-ng.conf.gentoo,v 1.5 2005/05/12 05:46:10 mr_bones_ Exp $
  2. #
  3. # Syslog-ng default configuration file for Gentoo Linux
  4. # contributed by Michael Sterrett
  5.  
  6. options { 
  7.     chain_hostnames(off); 
  8.     sync(0); 
  9.  
  10.     # The default action of syslog-ng 1.6.0 is to log a STATS line
  11.     # to the file every 10 minutes.  That's pretty ugly after a while.
  12.     # Change it to every 12 hours so you get a nice daily update of
  13.     # how many messages syslog-ng missed (0).
  14.     stats(43200); 
  15. };
  16.  
  17. source src { unix-stream("/dev/log"); internal(); pipe("/proc/kmsg"); };
  18.  
  19. destination messages { file("/var/log/messages"); };
  20.  
  21. # By default messages are logged to tty12...
  22. destination console_all { file("/dev/tty12"); };
  23. # ...if you intend to use /dev/console for programs like xconsole
  24. # you can comment out the destination line above that references /dev/tty12
  25. # and uncomment the line below.
  26. #destination console_all { file("/dev/console"); };
  27.  
  28. log { source(src); destination(messages); };
  29. log { source(src); destination(console_all); };
  30.